From 3fc0c2a8eadf4473264bdef987790899566c9f92 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 22 Aug 2014 11:06:47 -0400 Subject: [PATCH] GtkVolumeButton: Better typography Use a small space before %. This matches what we do for percentages elsewhere. https://bugzilla.gnome.org/show_bug.cgi?id=735192 --- gtk/gtkvolumebutton.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkvolumebutton.c b/gtk/gtkvolumebutton.c index d4849f5e31..f40649239a 100644 --- a/gtk/gtkvolumebutton.c +++ b/gtk/gtkvolumebutton.c @@ -246,7 +246,7 @@ cb_query_tooltip (GtkWidget *button, * Translate the "%d" to "%Id" if you want to use localised digits, * or otherwise translate the "%d" to "%d". */ - str = g_strdup_printf (C_("volume percentage", "%d %%"), percent); + str = g_strdup_printf (C_("volume percentage", "%d %%"), percent); } gtk_tooltip_set_text (tooltip, str); -- 2.30.2